home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / sep91.zip / 9N09092A < prev    next >
Text File  |  1991-07-17  |  279b  |  20 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. class X
  5.     {
  6. public:
  7.     int i;
  8.     int &ri;
  9.     X(int *p) : i(*p), ri(*p) { }
  10.     };
  11.  
  12. int main()
  13.     {
  14.     int n = 3;
  15.     X x1(&n);        // x1.r refers to n
  16.     ++x1.ri;        // increment n
  17.     printf("%d\n", n);
  18.     return 0;
  19.     }
  20.